home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM -- First make map file from Microsoft Visual C++ generated resource.h
- echo // MAKEHELP.BAT generated Help Map file. Used by SLSDEMO.HPJ. >"hlp\SlsDemo.hm"
- echo. >>"hlp\SlsDemo.hm"
- echo // Commands (ID_* and IDM_*) >>"hlp\SlsDemo.hm"
- makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlp\SlsDemo.hm"
- echo. >>"hlp\SlsDemo.hm"
- echo // Prompts (IDP_*) >>"hlp\SlsDemo.hm"
- makehm IDP_,HIDP_,0x30000 resource.h >>"hlp\SlsDemo.hm"
- echo. >>"hlp\SlsDemo.hm"
- echo // Resources (IDR_*) >>"hlp\SlsDemo.hm"
- makehm IDR_,HIDR_,0x20000 resource.h >>"hlp\SlsDemo.hm"
- echo. >>"hlp\SlsDemo.hm"
- echo // Dialogs (IDD_*) >>"hlp\SlsDemo.hm"
- makehm IDD_,HIDD_,0x20000 resource.h >>"hlp\SlsDemo.hm"
- echo. >>"hlp\SlsDemo.hm"
- echo // Frame Controls (IDW_*) >>"hlp\SlsDemo.hm"
- makehm IDW_,HIDW_,0x50000 resource.h >>"hlp\SlsDemo.hm"
- REM -- Make help for Project SLSDEMO
-
-
- echo Building Win32 Help files
- start /wait hcw /C /E /M "hlp\SlsDemo.hpj"
- if errorlevel 1 goto :Error
- if not exist "hlp\SlsDemo.hlp" goto :Error
- if not exist "hlp\SlsDemo.cnt" goto :Error
- echo.
- if exist Debug\nul copy "hlp\SlsDemo.hlp" Debug
- if exist Debug\nul copy "hlp\SlsDemo.cnt" Debug
- if exist Release\nul copy "hlp\SlsDemo.hlp" Release
- if exist Release\nul copy "hlp\SlsDemo.cnt" Release
- echo.
- goto :done
-
- :Error
- echo hlp\SlsDemo.hpj(1) : error: Problem encountered creating help file
-
- :done
- echo.
-